新版本4.0
基于boost.context 1.60
汇编代码实现了全新的协程内核。在保存PHP
函数调用栈的基础上,增加了C
栈的上下文存储。实现了对所有PHP
语法的支持。现在在任意PHP
的函数,包括call_user_func
、反射、魔术方法、array_map
中均可使用协程。
4.0
与2.0
是100%
兼容的,仅重构了协程内核,API
层无变更
4.0
分支代码即将升级至C++11
标准,建议使用gcc-4.8
或更高版本
支持php7.1及以上版本
新版本中底层对全局变量进行了隔离,现在可以使用Swoole\Process
创建多个Swoole\Server
实例了。
for ($i = 0; $i < 2; $i++)
{
$p = new swoole_process(function () use ($i) {
$port = 9501 + $i;
$http = new swoole_http_server("127.0.0.1", $port);
$http->on("start", function ($server) use ($port) {
echo "Swoole http server is started at http://127.0.0.1:{$port}\n";
});
$http->on("request", function ($request, $response) {
$response->header("Content-Type", "text/plain");
$response->end("Hello World\n");
});
$http->start();
}, false, false);
$p->start();
}
- 修复
http2
服务器无法向Chrome
浏览器客户端发送超过16K
数据的问题 - 增加
Channel->peek
方法,用于窥视数据 - 修复
Server->pause/resume
在SWOOLE_PROCESS
下无法使用的问题 - 移除
Linux AIO
,现在无论如何设置都使用线程池实现异步文件IO
- 支持
MySQL
存储过程